home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / prog_pas / lzw4p14.zip / DUMMY_IO.PAS < prev    next >
Pascal/Delphi Source File  |  1993-02-25  |  189b  |  15 lines

  1. unit DUMMY_IO;
  2.  
  3. interface
  4.  
  5. function Dummy(TheByte : Byte) : Integer;
  6.  
  7. implementation
  8.  
  9. function Dummy(TheByte : Byte) : Integer;
  10. begin
  11.   (* into the bit bucket *)
  12. end;
  13.  
  14. end.
  15.